1   package jrre.classloader.classfile.attributes;
2   
3   public class ExceptionAttribute extends Attribute{
4       
5       private int nameIndex,length,exceptionCount;
6       private int [] exceptionIndexTableArray;
7   
8       public ExceptionAttribute(){}
9   
10      public ExceptionAttribute(int nameIndex, int length, int exceptionCount,int [] exceptionIndexTableArray){
11  	this.nameIndex = nameIndex;
12  	this.length = length;
13  	this.exceptionCount = exceptionCount;
14  	this.exceptionIndexTableArray = exceptionIndexTableArray;
15      }
16  
17      public String toString(){
18  	return null;
19      }
20  
21  }
This page was automatically generated by Maven